
@import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&display=swap');


.bbh-hegarty-regular {
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 400;
    font-style: normal;
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

:root {
  --primary-color: #4CAF50;
  --secondary-color: #ff9800;
  --background-color: #f5f5f5e3;
  --text-color: #333;
  --app-cream: #f7f0df;
  --app-navy: #173a63;
  --app-gold: #c79d47;
  --nav-surface: rgba(255, 255, 255, 0.86);
  --nav-border: rgba(255, 255, 255, 0.55);
  --nav-shadow: 0 14px 34px rgba(20, 36, 23, 0.2);
  --nav-chip-bg: rgba(255, 255, 255, 0.88);
  --nav-chip-text: #17301b;
  --nav-chip-active: linear-gradient(120deg, #4caf50, #ff9800);
}

.header,
header {
  padding: 0;
  background:
    radial-gradient(circle at 16% 0, rgba(255, 153, 0, 0.2), transparent 42%),
    radial-gradient(circle at 84% 0, rgba(76, 175, 80, 0.22), transparent 38%),
    linear-gradient(180deg, #f7faf7 0%, #f2f8f3 55%, #eff7f0 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-link {
  color: var(--primary-color);
  text-decoration: none;
}

/* ============================================================ */

.exile-regular {
  font-family: "Exile", system-ui;
  font-weight: 300;
  font-style: normal;
}


a {
  text-decoration: none;
  color: var(--text-color);
}

a:hover {
  color: var(--primary-color);
}

h2 {
  margin: 0;
  padding: 30px 40px;

  color: var(--text-color);
}

section .quick-order a {
  position: relative;
  z-index: 50;
  display: inline-block;
  background-color: #4caf4f6b;
  color: var(--text-color);
  padding: 12px 24px;
  border: 1px solid #8f8f8d;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
  margin: 15px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


section .quick-order a i {

  margin-right: 8px;
  transition: color 0.3s ease;
}

section .quick-order a:hover {
  background-color: #ff9900e3;
  transform: translateY(-2px);
}

section .quick-order a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 79, 0.4);
}

/* ------------------------------------------------------------ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1000;
}

.nav-bar.hide {
  transform: translate(-50%, -140%);
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  padding: 12px 15px;
  letter-spacing: 0.4px;
  text-shadow: none;
  animation: navPulse 3.2s ease-in-out infinite;
  line-height: 1;
  flex-shrink: 0;
}

.logo span {
  font-size: 2rem !important;
  text-shadow: none !important;
}


.navbar-primery {
  display: flex;
  gap: 10px;
  padding: 10px 12px 9px;
  justify-content: flex-start;
  align-items: center;
  background: #ddddddc7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
}

.nav-search-link {
  display: flex;
  flex: 1 1 460px;
  min-width: 145%;
  margin: 0;
  margin-left: 20px;
}

.nav-actions {
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar-primery>.cart-link {
  margin-left: 8px;
}

.navbar-primery>.cart-link:first-of-type {
  margin-left: auto;
}

.area-switch-bar {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 7px;
  padding: 9px 10px;
  border: none;
  min-width: 170px;
  height: 40px;
}

.area-switch-bar label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #303030;
  text-transform: uppercase;
  white-space: nowrap;
}

#areaSelect {
  width: 100%;
  min-width: 108px;
  padding: 0;
  background-color: transparent;
  color: #1f1f1f;
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

#areaSelect:focus {
  outline: none;
}

.search-box {
  display: flex;
  gap: 1px;
  align-items: center;
  width: 68%;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 4px 10px rgba(0, 0, 0, 0.07);
  min-height: 35px;
}

.search-box:empty {
  display: none;
}

.search-bar {
  flex: 1;
  padding: 10px 13px;
  font-size: 14px;
  border: none;
  background: transparent;
  color: #1f1f1f;
}

.search-bar::placeholder {
  color: #777;
  font-weight: 500;
}

.search-bar:focus {
  outline: none;
}

.search-box:focus-within {
  border-color: #2aa84a;
  box-shadow: 0 0 0 3px rgba(42, 168, 74, 0.2);
}

.search-btn {
  min-width: 46px;
  height: auto;
  padding: 10px 13px;
  background: transparent;
  color: #303030;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.search-btn:hover {
  filter: brightness(1.08);
}

.search-btn:active {
  transform: scale(0.97);
}

.search-btn i {
  font-size: 15px;
  animation: navIconBob 2.4s ease-in-out infinite;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 5px 10px;
  min-height: 40px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  cursor: pointer;
  opacity: 1;
  user-select: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cart-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 7px;
  background: transparent;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.cart-icon i {
  animation: navIconBob 2.3s ease-in-out infinite;
}

.cart-text {
  font-size: 12px;
  font-weight: 700;
  color: #202020;
  white-space: nowrap;
}

.cart-link {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.cart-link:hover {
  transform: translateY(-2px);
}

.cart-link:hover .cart-button {
  box-shadow: 0 9px 16px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 0, 0, 0.24);
}

/* -------------------------------------- */

.hero-section {
  margin-top: 112px;
  width: 100%;
  height: 60vh;
  background: linear-gradient(to bottom right, #FF6647 0%, rgba(255, 102, 71, 0) 70%), linear-gradient(to bottom left, #405FAB 0%, rgba(64, 95, 171, 0) 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 20px 16px 30px;
}

.div-blur {
  width: 100%;
  height: 60vh;
  position: absolute;
  background: linear-gradient(180deg, rgba(12, 21, 33, 0.03), rgba(12, 21, 33, 0.08)); 
  backdrop-filter: blur(1px);

}

.sec-line {
  display: flex;
}

.hero-title {
  z-index: 2 !important;
  text-align: center !important;
  line-height: 1.04;
  margin-bottom: 10vh;

}

.hero-title span {
  font-size: clamp(2rem, 6vw, 4rem) !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}


.hero-title span:nth-child(3) {
  color: #1f2f23 !important;
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem) !important;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.services {
  z-index: 2 !important;
  display: flex !important;
  gap: 8px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  max-width: 980px;
  margin-inline: auto;
}

.services a,
.services .serv-6 a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 62px;
  padding: 8px 11px;
  border-radius: 12px;
  border: 1px solid rgba(101, 83, 47, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: #2b4b6e;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services a i,
.services .serv-6 a i {
  font-size: 17px;
  color: #294e79;
}

.services a:hover,
.services .serv-6 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(41, 35, 18, 0.14);
}

.navbar-secondary {
  display: flex;
  gap: 8px;
  padding: 8px 10px 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: none;
  border-radius: 0 0 18px 18px;

  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  white-space: nowrap;
}

.navbar-secondary>* {
  flex-shrink: 0;
}


.navbar-secondary a {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  background: #ffffff;
  color: #2b2b2b;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.navbar-secondary a:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.12);
}

.navbar-secondary a:focus-visible {
  outline: 2px solid #4caf50;
  outline-offset: 2px;
}

.navbar-secondary a.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(120deg, #ff9800, #43a047);
  box-shadow: 0 8px 16px rgba(56, 131, 48, 0.32);
}

.navbar-secondary a.active .nav-pill-icon {
  color: #ffffff;
}

.navbar-secondary .nav-pill-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #2aa84a;
  animation: navIconBob 2.6s ease-in-out infinite;
}

.navbar-secondary a:nth-child(even) .nav-pill-icon {
  animation-delay: 0.35s;
}

@keyframes navPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

@keyframes navIconBob {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) rotate(-6deg);
  }
}



.h-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;

  /* Touch support */
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.h-scroll::-webkit-scrollbar {
  display: none;
}

.h-scroll {
  scrollbar-width: none;
}

/* ====----------==== */


.product-price {
  display: block;
  font-size: 14px;
  color: #4caf50;
  margin: 4px 0;
}


/* ========================================================================= */
.category {
  padding: 15px;
  display: flex;
  /* flex-wrap: wrap; */
  overflow-x: scroll;
  gap: 15px;
}

/* 

.first-category  {
  background: linear-gradient(to bottom, #77777e 0%, #dad9d9 100%);
} */


.product-view {
  min-width: 220px;
  max-width: 220px;
  height: 300px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  margin: 16px;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-view img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #f4f4f4;
  border-radius: 14px;
  margin: 0 auto;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px 2px;
  height: 100%;
}

.product-view:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  border-color: rgba(76, 175, 80, 0.25);
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  white-space: nowrap;
  font-size: 13px;
  color: #2e7d32;
}

button,
.btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

/* animation for btn  */
/* Button base */
.product button {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease;
  padding: 8px 14px;
}

.product .qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  align-self: flex-end;
}

.product .minus-btn {
  background: #f2f2f2;
  color: #222;
  border: 1px solid #d5d5d5;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.product .minus-btn:hover {
  background: #e8e8e8;
}

/* Click press effect */
.product button:active {
  transform: scale(1.25);
}

/* Success animation */
.product button.added {
  background: #4caf50;
  color: #fff;
  animation: pop 0.75s ease;
}

/* Checkmark text */
.product button.added::after {
  content: "✓ Added";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Hide original text when added */
.product button.added span {
  visibility: hidden;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.09);
  }

  100% {
    transform: scale(1);
  }
}

/* ----------------------- */
.cart-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  list-style: none;
  border-bottom: 1px solid #333;
}

.order-form {
  padding: 20px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  background: #222;
  color: #fff;
  border: 1px solid #333;
}

.cart-btn-link {
  display: none;
}

.install-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #0b836fe5;
  /* Auroo accent */
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.5s ease;
  z-index: 9999;
}

.install-banner.hidden {
  display: none;
}

.install-banner.ios {
  justify-content: center;
  text-align: center;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon {
  width: 44px;
  height: 44px;
  animation: pulse 1.6s infinite;
}

.install-banner button {
  background: #ffffff;
  color: #ff6f00;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes slideUp {
  from {
    transform: translateY(120%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* ============================================================ */

.add-count {
  margin-left: 6px;
  font-size: 13px;
  opacity: 0.8;
}

.add-count.hidden {
  display: none;
}

/* ================== */
.beta-version-note {
  margin: 20px 12px 40px;
}

.beta-version-note .category-heading h2 {
  padding: 18px 12px 8px;
}

.beta-note-box {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  line-height: 1.7;
  font-size: 16px;
}

.beta-note-box ul {
  margin: 0;
  padding-left: 18px;
}

.beta-note-box li {
  margin: 6px 0;
  color: #2b2b2b;
}

.quick-list-panel {
  margin: 18px 12px 22px;
}

.quick-list-box {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.quick-list-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-list-form label {
  font-weight: 700;
  color: #1f1f1f;
}

.quick-list-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #1f1f1f;
  resize: vertical;
}

.quick-list-form small {
  color: #4f4f4f;
  line-height: 1.4;
}

.quick-list-btn {
  width: fit-content;
  border: none;
  border-radius: 10px;
  background: #1f8c3f;
  color: #fff;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
}

.quick-list-btn:hover {
  background: #167233;
}

.quick-list-status {
  margin: 8px 0 0;
  min-height: 22px;
  font-weight: 600;
  color: #1f8c3f;
}
